Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632451 Views

Latest files of /cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Particles Cursor Using Three.js

style.css cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Particles Cursor Using Three.js/style.css
115 Views
0 Comments
body,
html,
#app {
margin: 0;
width: 100%;
height: 100%;
}

index.html cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Particles Cursor Using Three.js/index.html
265 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Particles Cursor Using Three.js</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
script.js cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Particles Cursor Using Three.js/script.js
178 Views
0 Comments
import { particlesCursor } from "https://unpkg.com/threejs-toys@0.0.8/build/threejs-toys.module.cdn.min.js";

const pc = particlesCursor({
el: document.getElementById("app"),
gpgpuSize: 512,
colors: [0x00ff00, 0x0000ff],
color: 0xff0000,
coordScale: 0.5,